projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da3b886
)
(child_setup_tty): Don't clear ICRNL or INLCR.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 11 Nov 2001 20:11:14 +0000
(20:11 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 11 Nov 2001 20:11:14 +0000
(20:11 +0000)
src/sysdep.c
patch
|
blob
|
history
diff --git
a/src/sysdep.c
b/src/sysdep.c
index e69c2b1ab741d2c6f90aaa7f0cfb75f1700efde3..26fd3923ff0308a63bc0a1bc39d1c1678550b508 100644
(file)
--- a/
src/sysdep.c
+++ b/
src/sysdep.c
@@
-588,11
+588,13
@@
child_setup_tty (out)
#endif
s.main.c_lflag &= ~ECHO; /* Disable echo */
s.main.c_lflag |= ISIG; /* Enable signals */
+#if 0
s.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
#ifdef INLCR /* Just being cautious, since I can't check how
widespread INLCR is--rms. */
s.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
#endif
+#endif
#ifdef IUCLC
s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
#endif